iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 12
0
自我挑戰組

golang leetcode 30天挑戰系列 第 12

golang leetcode 30天挑戰 12th day -xorOperation

  • 分享至 

  • xImage
  •  

golang leetcode 30天挑戰 12th day -xorOperation

題目解讀:

題目來源:

xor-operation-in-an-array

原文:

Given an integer n and an integer start.

Define an array nums where nums[i] = start + 2*i (0-indexed) and n == nums.length.

Return the bitwise XOR of all elements of nums.

解讀:

給定一個正整數n,一個正整數 start

定義一個陣列nums, 長度為n

每個元素 nums[i]的值 = start + 2 * i

求出把每個nums[i]做XOR的結果

初步解法:

初步觀察:

首先是每個陣列數都是start+2 * i

因此只要循序把數值算出即可 不需要使用陣列儲存

另外可以把逐步把每個數值做XOR

初步設計:

Given an integer n, an integer start

step 0: let an integer result = 0, an integer idx = 0

step 1: if idx > n go to step 4

step 2: set result ^= start + 2 * idx

step 3: idx = idx + 1 go to step 3

step 4: return result

my solution source code

xorOperation.go

package xor_op

func xorOperation(n int, start int) int {
	result := 0
	idx := 0
	for idx < n {
		result ^= (start + 2*idx)
		idx++
	}
	return result
}

遇到的困難

題目上理解的問題

因為英文不是筆者母語

所以在題意解讀上 容易被英文用詞解讀給搞模糊

pseudo code撰寫

一開始不習慣把pseudo code寫下來

因此 不太容易把自己的code做解析

golang table driven test不熟

對於table driven test還不太熟析

所以對於寫test還是耗費不少時間

測資的撰寫

package xor_op

import "testing"

func Test_xorOperation(t *testing.T) {
	type args struct {
		n     int
		start int
	}
	tests := []struct {
		name string
		args args
		want int
	}{
		{
			name: "Example1",
			args: args{
				n:     5,
				start: 0,
			},
			want: 8,
		},
		{
			name: "Example2",
			args: args{
				n:     4,
				start: 3,
			},
			want: 8,
		},
		{
			name: "Example3",
			args: args{
				n:     1,
				start: 7,
			},
			want: 7,
		},
		{
			name: "Example4",
			args: args{
				n:     10,
				start: 5,
			},
			want: 2,
		},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			if got := xorOperation(tt.args.n, tt.args.start); got != tt.want {
				t.Errorf("xorOperation() = %v, want %v", got, tt.want)
			}
		})
	}
}

參考文章

golang test

結語

有一隻公鹿,它走著走著,
愈走愈快,最後它怎麼樣?

ANS: 高速公路


上一篇
golang leetcode 30天挑戰 11th day -decompressRLElist
下一篇
golang leetcode 30天挑戰 13th day create-target-array-in-the-given-order
系列文
golang leetcode 30天挑戰30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言